home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: Entities & Basic Scripting / Keystone Learning XML Entities and Basic Scripting.iso / Sample Files / Chapter 4 / NewEmployee.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-12-01  |  717 b   |  30 lines

  1. <?xml version="1.0"?>
  2. <employees>
  3.     <!-- Employee 1 -->
  4.     <employee id="A1234">
  5.         <name>
  6.             <first>John</first>
  7.             <last>Doe</last>
  8.         </name>
  9.         <position>Programmer</position>
  10.         <address>
  11.             <street>123 Main Street</street>
  12.             <city>Anywhere</city>
  13.             <state>CA</state>
  14.             <zip>92000</zip>
  15.         </address>
  16.         <phone>
  17.             <main>(714) 555-1000</main>
  18.             <fax>(714) 555-1001</fax>
  19.         </phone>
  20.     </employee>
  21.  
  22.     <!-- Employee 2 -->
  23.     <employee>
  24.         <name>Jane Doe</name>
  25.     <title>Systems Analyst</title>
  26.         <phone>(714) 555-1002</phone>
  27.     </employee>
  28.  
  29. </employees>
  30.